Version

Interpolate(List<Double>,Single,List<Double>,List<Double>) Method

Sets a list of numbers to an interpolation between the given lists of numbers.
Syntax
'Declaration
 
Protected Overloads Shared Sub Interpolate( _
   ByVal ret As List(Of Double), _
   ByVal p As Single, _
   ByVal min As List(Of Double), _
   ByVal max As List(Of Double) _
) 
protected static void Interpolate( 
   List<double> ret,
   float p,
   List<double> min,
   List<double> max
)

Parameters

ret
The list of numbers to populate with the interpolated values.
p
A number between 0 and 1 indicating the transition progress.
min
The minimum or starting numbers.
max
The maximum or ending numbers.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also